home *** CD-ROM | disk | FTP | other *** search
/ 600 Games / 600games.iso / Estrategia / coffeetycoon_Demo.swf / scripts / DefineButton2_807 / BUTTONCONDACTION on(rollOver).as < prev   
Encoding:
Text File  |  2006-06-13  |  331 b   |  10 lines

  1. on(rollOver){
  2.    var buttonnum = parseInt(this._name.substr("buyitem_".length));
  3.    var gotxt;
  4.    _root.buy_description = _root.item_text[buttonnum];
  5.    _root.buy_unlock = _root.item_minimums[buttonnum];
  6.    _root.buy_cost = _root.item_cost[buttonnum];
  7.    gotxt = "buy_" + buttonnum;
  8.    _root.buyclip.gotoAndPlay(gotxt);
  9. }
  10.